home *** CD-ROM | disk | FTP | other *** search
- /*
- S P E C I A L S . C
- */
-
- #include "iccomp.h"
-
- ESTRUC_ *specials(type, marg)
- E_TYPE_
- type;
- ESTRUC_
- *marg; /* array of arguments */
- {
- register unsigned
- count;
-
- if (type == f_execute)
- return(execute(marg)); /* full list of arguments */
-
- count = marg->type; /* count # of arguments */
-
- catargs(marg); /* catenate multiple args */
- gencode(marg, op_push_imm, count); /* # of arguments of fun */
- callrss(marg, type, count + 1); /* call function */
-
- return (marg);
- }